home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / comm / eac102.zip / DEMO / AVITEST.DPR next >
Text File  |  1997-01-17  |  187b  |  14 lines

  1. program avitest;
  2.  
  3. uses
  4.   Forms,
  5.   Unit2 in 'Unit2.pas' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TForm1, Form1);
  12.   Application.Run;
  13. end.
  14.